projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d4f635a
)
(json-alist-p, json-plist-p): Don't use `iff' in docstrings.
author
Juanma Barranquero
<lekktu@gmail.com>
Thu, 8 May 2008 03:37:07 +0000
(
03:37
+0000)
committer
Juanma Barranquero
<lekktu@gmail.com>
Thu, 8 May 2008 03:37:07 +0000
(
03:37
+0000)
lisp/json.el
patch
|
blob
|
history
diff --git
a/lisp/json.el
b/lisp/json.el
index a4937711c8541cee649e5710f9d56e8671d97285..3d4c02c588de1b828e7ee4a134d773fae667f116 100644
(file)
--- a/
lisp/json.el
+++ b/
lisp/json.el
@@
-107,13
+107,13
@@
this around your call to `json-read' instead of `setq'ing it.")
(mapconcat 'identity strings separator))
(defun json-alist-p (list)
- "Non-null iff LIST is an alist."
+ "Non-null if
and only i
f LIST is an alist."
(or (null list)
(and (consp (car list))
(json-alist-p (cdr list)))))
(defun json-plist-p (list)
- "Non-null iff LIST is a plist."
+ "Non-null if
and only i
f LIST is a plist."
(or (null list)
(and (keywordp (car list))
(consp (cdr list))